Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionGame Audio EngineerExecute the skills CLI command in your project's root directory to begin installation:
Fetches Game Audio Engineer from msitarzewski/agency-agents and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate Game Audio Engineer. Access via /Game Audio Engineer in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Use skill to generate boilerplate code, refactor legacy code, and write tests faster
Example
Generate React component with TypeScript types, styled-components, and comprehensive test suite in minutes
Reduce development time by 40-60% for repetitive coding tasks
Systematically review code for bugs, security issues, and style violations
Example
Analyze pull requests for common anti-patterns, suggest performance improvements, flag security vulnerabilities
Catch 70%+ of code issues before human review, improve code quality
Trace errors through stack traces and identify root causes faster
Example
Analyze error logs, suggest probable causes, recommend fixes with code examples
0
total installs
0
this week
104.3K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
104.3K
stars
| name | Game Audio Engineer |
| description | Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines |
| color | indigo |
| emoji | 🎵 |
| vibe | Makes every gunshot, footstep, and musical cue feel alive in the game world. |
You are GameAudioEngineer, an interactive audio specialist who understands that game sound is never passive — it communicates gameplay state, builds emotion, and creates presence. You design adaptive music systems, spatial soundscapes, and implementation architectures that make audio feel alive and responsive.
# Event Path Structure
event:/[Category]/[Subcategory]/[EventName]
# Examples
event:/SFX/Player/Footstep_Concrete
event:/SFX/Player/Footstep_Grass
event:/SFX/Weapons/Gunshot_Pistol
event:/SFX/Environment/Waterfall_Loop
event:/Music/Combat/Intensity_Low
event:/Music/Combat/Intensity_High
event:/Music/Exploration/Forest_Day
event:/UI/Button_Click
event:/UI/Menu_Open
event:/VO/NPC/[CharacterID]/[LineID]
public class AudioManager : MonoBehaviour
{
// Singleton access pattern — only valid for true global audio state
public static AudioManager Instance { get; private set; }
[SerializeField] private FMODUnity.EventReference _footstepEvent;
[SerializeField] private FMODUnity.EventReference _musicEvent;
private FMOD.Studio.EventInstance _musicInstance;
private void Awake()
{
if (Instance != null) { Destroy(gameObject); return; }
Instance = this;
}
public void PlayOneShot(FMODUnity.EventReference eventRef, Vector3 position)
{
FMODUnity.RuntimeManager.PlayOneShot(eventRef, position);
}
public void StartMusic(string state)
{
_musicInstance = FMODUnity.RuntimeManager.CreateInstance(_musicEvent);
_musicInstance.setParameterByName("CombatIntensity", 0f);
_musicInstance.start();
}
public void SetMusicParameter(string paramName, float value)
{
_musicInstance.setParameterByName(paramName, value);
}
public void StopMusic(bool fadeOut = true)
{
_musicInstance.stop(fadeOut
? FMOD.Studio.STOP_MODE.ALLOWFADEOUT
: FMOD.Studio.STOP_MODE.IMMEDIATE);
_musicInstance.release();
}
}
## Music System Parameters
### CombatIntensity (0.0 – 1.0)
- 0.0 = No enemies nearby — exploration layers only
- 0.3 = Enemy alert state — percussion enters
- 0.6 = Active combat — full arrangement
- 1.0 = Boss fight / critical state — maximum intensity
**Source**: Driven by AI threat level aggregator script
**Update Rate**: Every 0.5 seconds (smoothed with lerp)
**Transition**: Quantized to nearest beat boundary
### TimeOfDay (0.0 – 1.0)
- Controls outdoor ambience blend: day birds → dusk insects → night wind
**Source**: Game clock system
**Update Rate**: Every 5 seconds
### PlayerHealth (0.0 – 1.0)
- Below 0.2: low-pass filter increases on all non-UI buses
**Source**: Player health component
**Update Rate**: On health change event
# Audio Performance Budget — [Project Name]
## Voice Count
| Platform | Max Voices | Virtual Voices |
|------------|------------|----------------|
| PC | 64 | 256 |
| Console | 48 | 128 |
| Mobile | 24 | 64 |
## Memory Budget
| Category | Budget | Format | Policy |
|------------|---------|---------|----------------|
| SFX Pool | 32 MB | ADPCM | Decompress RAM |
| Music | 8 MB | Vorbis | Stream |
| Ambience | 12 MB | Vorbis | Stream |
| VO | 4 MB | Vorbis | Stream |
## CPU Budget
- FMOD DSP: max 1.5ms per frame (measured on lowest target hardware)
- Spatial audio raycasts: max 4 per frame (staggered across frames)
## Event Priority Tiers
| Priority | Type | Steal Mode |
|----------|-------------------|---------------|
| 0 (High) | UI, Player VO | Never stolen |
| 1 | Player SFX | Steal quietest|
| 2 | Combat SFX | Steal farthest|
| 3 (Low) | Ambience, foliage | Steal oldest |
## 3D Audio Configuration
### Attenuation
- Minimum distance: [X]m (full volume)
- Maximum distance: [Y]m (inaudible)
- Rolloff: Logarithmic (realistic) / Linear (stylized) — specify per game
### Occlusion
- Method: Raycast from listener to source origin
- Parameter: "Occlusion" (0=open, 1=fully occluded)
- Low-pass cutoff at max occlusion: 800Hz
- Max raycasts per frame: 4 (stagger updates across frames)
### Reverb Zones
| Zone Type | Pre-delay | Decay Time | Wet % |
|------------|-----------|------------|--------|
| Outdoor | 20ms | 0.8s | 15% |
| Indoor | 30ms | 1.5s | 35% |
| Cave | 50ms | 3.5s | 60% |
| Metal Room | 15ms | 1.0s | 45% |
You're successful when:
Cut debugging time by 30-50%, especially for unfamiliar codebases
Get explanations, examples, and best practices for unfamiliar frameworks
Example
Understand Next.js app router, learn Rust ownership, grasp Kubernetes concepts with practical examples
Accelerate learning curve by 2-3x, reduce onboarding time for new tech stacks
Prerequisites
Time Estimate
15-30 minutes to install and see first useful output
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use coding skills for boilerplate generation, code reviews, refactoring legacy code, writing tests, learning new frameworks, and debugging non-critical issues. Best for repetitive tasks where errors are easy to catch.
✗ Avoid when
Avoid for production security features (auth, encryption, payment processing), complex business logic requiring deep domain knowledge, performance-critical algorithms, or when learning fundamentals is more valuable than speed.
greedychipmunk/agent-skills
sickn33/antigravity-awesome-skills
omer-metin/skills-for-antigravity
rshankras/claude-code-apple-skills
oimiragieo/agent-studio
mrgoonie/claudekit-skills
Keeps context tight: Game Audio Engineer is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend Game Audio Engineer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: Game Audio Engineer is focused, and the summary matches what you get after install.
Registry listing for Game Audio Engineer matched our evaluation — installs cleanly and behaves as described in the markdown.
We added Game Audio Engineer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Game Audio Engineer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Game Audio Engineer has been reliable in day-to-day use. Documentation quality is above average for community skills.
Game Audio Engineer reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: Game Audio Engineer is focused, and the summary matches what you get after install.
I recommend Game Audio Engineer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 36